home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / arc / Misc / ARCHandler / Scripts / ToARC.dopus < prev   
Encoding:
Text File  |  1996-08-10  |  361 b   |  20 lines

  1. /* Change DirectoryOpus directory from directory on Archives:
  2. ** to original directory. */
  3.  
  4. options results
  5.  
  6. status 13 "-1"
  7. dir=result
  8.  
  9. getnextselected "-1"
  10. file=result
  11. if file~=0 then dir=dir || result
  12.  
  13. dir=strip(dir,'B','"')
  14. i=index(dir,':')
  15. if i~=0 then
  16.   do
  17.     dir="Archives:" || left(dir,i-1) || '/' || substr(dir,i+1)
  18.     ScanDir '"' || dir || '"'
  19.   end
  20.